home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / diskutil / fdf.zoo / elib.h < prev    next >
C/C++ Source or Header  |  1992-04-12  |  674b  |  26 lines

  1. /*
  2.  * elib.h
  3.  *
  4.  * prototypes for extended C library functions - Atari ST version
  5.  *
  6.  * Roy Bixler
  7.  * April 12, 1992
  8.  */
  9.  
  10.  
  11.  
  12. #define HASH_TAB_SIZE 211
  13. #define PATH_SEPARATOR "\\"
  14.  
  15. /*int getopt(int argc, char **argv, char *opts);*/
  16. int ask_user(char *buf);
  17. int hashpjw(char *s);
  18. int is_special(char *d_name);
  19. long cmptime(const struct _dta *a, const struct _dta *b);
  20. char *append_dir_to_path(char *path, char *dir);
  21. int delete_file(char *file, char force);
  22. char *skip_whitespace(char *str);
  23. int mark_list(char *num_list, char *mark_list, int max_num);
  24. void zap_trailing_nl(char *str, int max_ch, FILE *stream);
  25. void format_dir(char *dir, char app_slash, char *formatted_dir);
  26.